PrivatePropertyDescriptor

data class PrivatePropertyDescriptor(name: String, value: RemoteObject?, get: RemoteObject?, set: RemoteObject?)

Object private field descriptor.

Constructors

PrivatePropertyDescriptor
Link copied to clipboard
fun PrivatePropertyDescriptor(name: String, value: RemoteObject? = null, get: RemoteObject? = null, set: RemoteObject? = null)

Properties

get
Link copied to clipboard
val get: RemoteObject? = null
A function which serves as a getter for the private property, or undefined if there is no getter (accessor descriptors only).
name
Link copied to clipboard
val name: String
Private property name.
set
Link copied to clipboard
val set: RemoteObject? = null
A function which serves as a setter for the private property, or undefined if there is no setter (accessor descriptors only).
value
Link copied to clipboard
val value: RemoteObject? = null
The value associated with the private property.

Sources

jvm source
Link copied to clipboard